home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / viewwrld / viewwrld.lha / viewworld / gr / image_info.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-21  |  2.2 KB  |  66 lines

  1. /* $Id: image_info.h,v 2.3 89/09/20 17:01:39 mbp Exp $
  2.  *
  3.  * image_info.h: information about images used in panels
  4.  */
  5.  
  6. /************************************************************************
  7.  *        Copyright (C) 1989 by Mark B. Phillips                  *
  8.  *                                     *
  9.  * Permission to use, copy, modify, and distribute this software and    *
  10.  * its documentation for any purpose and without fee is hereby granted, *
  11.  * provided that the above copyright notice appear in all copies and    *
  12.  * that both that copyright notice and this permission notice appear in *
  13.  * supporting documentation, and that the name of Mark B. Phillips or   *
  14.  * the University of Maryland not be used in advertising or publicity   *
  15.  * pertaining to distribution of the software without specific, written *
  16.  * prior permission.  This software is provided "as is" without express *
  17.  * or implied warranty.                                                 *
  18.  ************************************************************************/
  19.  
  20.  
  21. /* The images used for panel buttons and messages were all created
  22.  * with iconedit(1) and then cut down to size using the shell script
  23.  * cut_icon.  The size of each image is given in the table below;
  24.  * these dimensions must be known at compile for passing to the
  25.  * SunView macro "mpr_static".
  26.  *
  27.  * NOTE: if iconedit is used to edit any of these images, the result
  28.  * must be re-cut down to size using cut_icon; iconedit always writes
  29.  * 64x64 icons.  (Unless the "size" is set to "cursor", in which case
  30.  * it is 16x16).
  31.  */
  32.  
  33. /* Panel Item        File Name    Width    Height    */
  34.  
  35. /* left mouse        lmouse.image            */
  36. #define LMOUSE_W            16
  37. #define LMOUSE_H                15
  38.  
  39. /* middle mouse        mmouse.image            */
  40. #define MMOUSE_W            16
  41. #define MMOUSE_H                15
  42.  
  43. /* right mouse        rmouse.image            */
  44. #define RMOUSE_W            16
  45. #define RMOUSE_H                15
  46.  
  47. /* shift + left mouse    lsmouse.image            */
  48. #define LSMOUSE_W            16
  49. #define LSMOUSE_H                21
  50.  
  51. /* shift + middle mouse    msmouse.image            */
  52. #define MSMOUSE_W            16
  53. #define MSMOUSE_H                21
  54.  
  55. /* shift + right mouse    rsmouse.image            */
  56. #define RSMOUSE_W            16
  57. #define RSMOUSE_H                21
  58.  
  59. /* Esc key        esc.image            */
  60. #define ESC_W                16
  61. #define ESC_H                    16
  62.  
  63. /* View Control Buttons    (various)            */
  64. #define VCB_W                48
  65. #define VCB_H                    48
  66.